home *** CD-ROM | disk | FTP | other *** search
/ 9-Digit Zip Code Directory / 9-Digit Zip Code Directory (American Business Information) (ABIZIP-12).ISO / z4src.zip / INQONE.H < prev    next >
C/C++ Source or Header  |  1995-09-20  |  625b  |  31 lines

  1. // inqone.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CInqOne dialog
  6.  
  7. class CInqOne : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CInqOne(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CInqOne)
  15.     enum { IDD = IDD_INQUIRE1 };
  16.     CString    m_addr2;
  17.     CString    m_city;
  18.     CString    m_state;
  19.     //}}AFX_DATA
  20.  
  21. // Implementation
  22. protected:
  23.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  24.  
  25.     // Generated message map functions
  26.     //{{AFX_MSG(CInqOne)
  27.     virtual void OnOK();
  28.     //}}AFX_MSG
  29.     DECLARE_MESSAGE_MAP()
  30. };
  31.